home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex76.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  173 b   |  11 lines

  1. Program Example76;
  2.  
  3. { Program to demonstrate the FillWord function. }
  4.  
  5. Var W : Array[1..100] of Word;
  6.  
  7. begin
  8.   { Quick initialization of array W }
  9.   FillWord(W,100,0);
  10. end.
  11.